home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH20 / creator / debugger / DebuggerBreakConditionDlg.gui < prev    next >
Encoding:
Text File  |  2005-11-23  |  3.4 KB  |  146 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(DebuggerBreakConditionDlg) {
  3.     profile = "GuiDialogProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "True";
  10.     setFirstResponder = "False";
  11.     modal = "True";
  12.     helpTag = "0";
  13.  
  14.     new GuiWindowCtrl() {
  15.         profile = "GuiWindowProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "bottom";
  18.         position = "220 146";
  19.         extent = "200 188";
  20.         minExtent = "8 8";
  21.         visible = "True";
  22.         setFirstResponder = "False";
  23.         modal = "True";
  24.         helpTag = "0";
  25.         text = "Set the break condition";
  26.         resizeWidth = "True";
  27.         resizeHeight = "True";
  28.         canMove = "False";
  29.         canClose = "False";
  30.         canMinimize = "False";
  31.         canMaximize = "False";
  32.         minSize = "50 50";
  33.  
  34.         new GuiTextCtrl() {
  35.             profile = "GuiTextProfile";
  36.             horizSizing = "right";
  37.             vertSizing = "bottom";
  38.             position = "20 28";
  39.             extent = "121 18";
  40.             minExtent = "8 8";
  41.             visible = "True";
  42.             setFirstResponder = "False";
  43.             modal = "True";
  44.             helpTag = "0";
  45.             text = "Enter the break condition:";
  46.         };
  47.         new GuiTextEditCtrl(BreakCondition) {
  48.             profile = "GuiTextEditProfile";
  49.             horizSizing = "right";
  50.             vertSizing = "bottom";
  51.             position = "20 44";
  52.             extent = "160 18";
  53.             minExtent = "8 8";
  54.             visible = "True";
  55.             setFirstResponder = "False";
  56.             modal = "True";
  57.             altCommand = "DbgBreakConditionSet();";
  58.             helpTag = "0";
  59.             historySize = "0";
  60.         };
  61.         new GuiTextCtrl() {
  62.             profile = "GuiTextProfile";
  63.             horizSizing = "right";
  64.             vertSizing = "bottom";
  65.             position = "20 68";
  66.             extent = "57 18";
  67.             minExtent = "8 8";
  68.             visible = "True";
  69.             setFirstResponder = "False";
  70.             modal = "True";
  71.             helpTag = "0";
  72.             text = "Pass Count:";
  73.         };
  74.         new GuiTextEditCtrl(BreakPassCount) {
  75.             profile = "GuiTextEditProfile";
  76.             horizSizing = "right";
  77.             vertSizing = "bottom";
  78.             position = "20 84";
  79.             extent = "160 18";
  80.             minExtent = "8 8";
  81.             visible = "True";
  82.             setFirstResponder = "False";
  83.             modal = "True";
  84.             helpTag = "0";
  85.             historySize = "0";
  86.                 returnTab = "true";
  87.         };
  88.         new GuiTextCtrl() {
  89.             profile = "GuiTextProfile";
  90.             horizSizing = "right";
  91.             vertSizing = "bottom";
  92.             position = "20 108";
  93.             extent = "27 18";
  94.             minExtent = "8 8";
  95.             visible = "True";
  96.             setFirstResponder = "False";
  97.             modal = "True";
  98.             helpTag = "0";
  99.             text = "Clear:";
  100.         };
  101.         new GuiTextEditCtrl(BreakClear) {
  102.             profile = "GuiTextEditProfile";
  103.             horizSizing = "right";
  104.             vertSizing = "bottom";
  105.             position = "20 124";
  106.             extent = "160 18";
  107.             minExtent = "8 8";
  108.             visible = "True";
  109.             setFirstResponder = "False";
  110.             modal = "True";
  111.             helpTag = "0";
  112.             historySize = "0";
  113.                 returnTab = "true";
  114.         };
  115.         new GuiButtonCtrl() {
  116.             profile = "GuiButtonProfile";
  117.             horizSizing = "right";
  118.             vertSizing = "bottom";
  119.             position = "56 156";
  120.             extent = "40 16";
  121.             minExtent = "8 8";
  122.             visible = "True";
  123.             setFirstResponder = "False";
  124.             modal = "True";
  125.             command = "DbgBreakConditionSet();";
  126.             helpTag = "0";
  127.             text = "Set";
  128.         };
  129.         new GuiButtonCtrl() {
  130.             profile = "GuiButtonProfile";
  131.             horizSizing = "right";
  132.             vertSizing = "bottom";
  133.             position = "104 156";
  134.             extent = "40 16";
  135.             minExtent = "8 8";
  136.             visible = "True";
  137.             setFirstResponder = "False";
  138.             modal = "True";
  139.             command = "Canvas.popDialog(DebuggerBreakConditionDlg);";
  140.             helpTag = "0";
  141.             text = "Cancel";
  142.         };
  143.     };
  144. };
  145. //--- OBJECT WRITE END ---
  146.